home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Clickx 115
/
Clickx 115.iso
/
software
/
tools
/
windows
/
tails-i386-0.16.iso
/
live
/
filesystem.squashfs
/
var
/
lib
/
dpkg
/
info
/
bash-completion.postinst
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2010-11-16
|
400 b
|
26 lines
#!/bin/sh
set -e
case "$1" in
configure)
# remove ucf configury
if which ucf >/dev/null; then
ucf --purge /etc/bash_completion
fi
if which ucfr >/dev/null; then
ucfr --purge bash-completion /etc/bash_completion
fi
;;
abort-upgrade|abort-remove|abort-deconfigure)
;;
*)
echo "postinst called with unknown argument \`$1'" >&2
exit 1
;;
esac
exit 0